| stopTestsIf method |
Applies to
TTestCase
Declaration
Procedure stopTestsIf(cond :boolean; msg :String = '');
| Parameters |
| cond | An optional condition to check for. |
| msg | An optional message to attach to the thrown exception. |
| Raises |
| EStopTestsFailure |
See Also
procedure TTestCase.stopTestsIf(cond: boolean; msg: String);
begin
if cond then
stopTests(msg);
End; |
|
|